浏览代码

Fixing valid variable names #2

Swaroop C H 12 年之前
父节点
当前提交
3ab291995c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      06-basics.pd

+ 1 - 1
06-basics.pd

@@ -150,7 +150,7 @@ Variables are examples of identifiers. *Identifiers* are names given to identify
 - The first character of the identifier must be a letter of the alphabet (uppercase ASCII or lowercase ASCII or Unicode character) or an underscore ('_').
 - The rest of the identifier name can consist of letters (uppercase ASCII or lowercase ASCII or Unicode character), underscores ('_') or digits (0-9).
 - Identifier names are case-sensitive. For example, `myname` and `myName` are **not** the same. Note the lowercase `n` in the former and the uppercase `N` in the latter.
-- Examples of *valid* identifier names are `i`, `__my_name`, `name_23`, `>a1b2_c3`. Examples of ''invalid'' identifier names are `2things`, `this is spaced out`, `my-name`, and `"this_is_in_quotes"`.
+- Examples of *valid* identifier names are `i`, `__my_name`, `name_23`. Examples of ''invalid'' identifier names are `2things`, `this is spaced out`, `my-name`, `>a1b2_c3` and `"this_is_in_quotes"`.
 
 ## Data Types