Skip to content

Commit

Permalink
correct language in documentation (#29502)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins authored and JeffBezanson committed Oct 3, 2018
1 parent db100ad commit 37dc16e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/src/base/base.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ This is the list of reserved keywords in Julia:
`return`, `struct`, `true`, `try`, `using`, `while`.
Those keywords are not allowed to be used as variable names.

The following two word sequences are reserved:
The following two-word sequences are reserved:
`abstract type`, `mutable struct`, `primitive type`.
However, you can create variables with names:
`abstract`, `mutable`, `primitive` and `type`.

Finally `where` is parsed as an infix operator for writing parametric method
and type definitions. Also `in` and `isa` are parsed as infix operators.
Creation of variable named `where`, `in` or `isa` is allowed though.
Creation of a variable named `where`, `in` or `isa` is allowed though.

```@docs
module
Expand Down

0 comments on commit 37dc16e

Please sign in to comment.