Skip to content

Commit 41a4d1a

Browse files
committed
Fix manual.
1 parent 725b7d9 commit 41a4d1a

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

base.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ ctr_object* ctr_build_nil() {
109109

110110
/**
111111
* @def
112-
* [Nil] Nil?
112+
* [ Nil ] Nil?
113113
*
114114
* @example
115115
* ☞ x := Nil.
@@ -121,7 +121,7 @@ ctr_object* ctr_nil_is_nil(ctr_object* myself, ctr_argument* argumentList) {
121121

122122
/**
123123
* @def
124-
* [Nil] string
124+
* [ Nil ] string
125125
*
126126
* @example
127127
* ☞ x := Nil.
@@ -133,7 +133,7 @@ ctr_object* ctr_nil_to_string(ctr_object* myself, ctr_argument* argumentList) {
133133

134134
/**
135135
* @def
136-
* [Nil] number
136+
* [ Nil ] number
137137
*
138138
* @example
139139
* ☞ x := Nil.
@@ -145,7 +145,7 @@ ctr_object* ctr_nil_to_number(ctr_object* myself, ctr_argument* ctr_argumentList
145145

146146
/**
147147
* @def
148-
* [Nil] boolean
148+
* [ Nil ] boolean
149149
*
150150
* @example
151151
* ☞ x := Nil.
@@ -317,7 +317,7 @@ ctr_object* ctr_string_copy( ctr_object* myself, ctr_argument* argumentList ) {
317317
/**
318318
*
319319
* @def
320-
* [Object] case: [Object] do: [Block].
320+
* [ Object ] case: [ Object ] do: [ Block ].
321321
*
322322
* @example
323323
* ☞ x := '**'.
@@ -1453,7 +1453,7 @@ ctr_object* ctr_build_empty_string() {
14531453

14541454
/**
14551455
* @def
1456-
* [String] bytes
1456+
* [ String ] bytes
14571457
*
14581458
* @example
14591459
* ☞ x := '☘☘☘'.
@@ -1502,7 +1502,7 @@ ctr_object* ctr_string_neq(ctr_object* myself, ctr_argument* argumentList) {
15021502

15031503
/**
15041504
* @def
1505-
* [String] length
1505+
* [ String ] length
15061506
*
15071507
* @example
15081508
* ☞ x := '☘☘☘'.
@@ -1767,7 +1767,7 @@ ctr_object* ctr_string_last_index_of(ctr_object* myself, ctr_argument* argumentL
17671767

17681768
/**
17691769
* @def
1770-
* [String] [String]: [String]
1770+
* [ String ] [ String ]: [ String ]
17711771
*
17721772
* @example
17731773
* ☞ x := '$ money'.
@@ -1973,7 +1973,7 @@ ctr_object* ctr_string_find_pattern_do( ctr_object* myself, ctr_argument* argume
19731973

19741974
/**
19751975
* @def
1976-
* [String] contains: [String]
1976+
* [ String ] contains: [ String ]
19771977
*
19781978
* @example
19791979
* ☞ x := 'abc' contains: 'a'.

collections.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ ctr_object* ctr_array_max(ctr_object* myself, ctr_argument* argumentList) {
125125

126126
/**
127127
* @def
128-
* [ List ] each: [Block].
128+
* [ List ] each: [ Block ].
129129
*
130130
* @example
131131
* ☞ x := List ← 1 ; 2 ; 3.
@@ -858,7 +858,7 @@ ctr_object* ctr_map_put(ctr_object* myself, ctr_argument* argumentList) {
858858

859859
/**
860860
* @def
861-
* [ Map ] [ String ]: [Object]
861+
* [ Map ] [ String ]: [ Object ]
862862
*
863863
* @example
864864
* ☞ x :=

system.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ ctr_object* ctr_clock_weekday( ctr_object* myself, ctr_argument* argumentList )
10801080

10811081
/**
10821082
* @def
1083-
* [Moment] time.
1083+
* [ Moment ] time.
10841084
*
10851085
* @example
10861086
* ☞ t := Moment new time.
@@ -1295,13 +1295,13 @@ ctr_object* ctr_clock_add( ctr_object* myself, ctr_argument* argumentList ) {
12951295
}
12961296

12971297
/**
1298-
* [Moment] subtract: [Number].
1298+
* [ Moment ] subtract: [Number].
12991299
*
1300-
* Same as '[Moment] add:' but subtracts the number instead of adding it to
1300+
* Same as '[ Moment ] add:' but subtracts the number instead of adding it to
13011301
* the clock's time.
13021302
*
13031303
* In other languages:
1304-
* Dutch: [Moment] aftrekken: [Getal].
1304+
* Dutch: [ Moment ] aftrekken: [Getal].
13051305
* Verschuift het moment in de tijd op basis van het getal.
13061306
* Het getal kan gekwalificeerd worden als minuten, uren of seconden.
13071307
*/
@@ -1310,13 +1310,13 @@ ctr_object* ctr_clock_subtract( ctr_object* myself, ctr_argument* argumentList )
13101310
}
13111311

13121312
/**
1313-
* [Moment] new
1313+
* [ Moment ] new
13141314
*
13151315
* Creates a new clock, by default a clock will be set to
13161316
* the UTC timezone having the current time.
13171317
*
13181318
* In other languages:
1319-
* Dutch: [Moment] nieuw.
1319+
* Dutch: [ Moment ] nieuw.
13201320
* Maakt een nieuw moment aan voor het huidige tijdstip.
13211321
*/
13221322
ctr_object* ctr_clock_new( ctr_object* myself, ctr_argument* argumentList ) {

0 commit comments

Comments
 (0)