Skip to content

Commit

Permalink
Fixed manual.
Browse files Browse the repository at this point in the history
  • Loading branch information
spotlessmind1975 committed Oct 11, 2023
1 parent 69d201c commit 43cc896
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
12 changes: 11 additions & 1 deletion ugbc/src/targets/c128/get_raster_line.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,17 @@ extern char DATATYPE_AS_STRING[][16];
/* <usermanual>
@keyword RASTER LINE
@target all
@english
This function allows you to retrieve the current raster line.
@italian
Questa funzione permette di recuperare la linea di scansione raster attuale.
@syntax = RASTER LINE
@example randomScore = RASTER LINE
@target c128
</usermanual> */
Variable * get_raster_line( Environment * _environment ) {

Expand Down
2 changes: 1 addition & 1 deletion ugbc/src/targets/c64/get_raster_line.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ extern char DATATYPE_AS_STRING[][16];
/* <usermanual>
@keyword RASTER LINE
@target all
@target c64
</usermanual> */
Variable * get_raster_line( Environment * _environment ) {

Expand Down
2 changes: 0 additions & 2 deletions ugbc/src/targets/coco/get_raster_line.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ extern char DATATYPE_AS_STRING[][16];
*/
/* <usermanual>
@keyword RASTER LINE
@target all
</usermanual> */
Variable * get_raster_line( Environment * _environment ) {

Expand Down
2 changes: 0 additions & 2 deletions ugbc/src/targets/coco3/get_raster_line.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ extern char DATATYPE_AS_STRING[][16];
*/
/* <usermanual>
@keyword RASTER LINE
@target all
</usermanual> */
Variable * get_raster_line( Environment * _environment ) {

Expand Down
7 changes: 3 additions & 4 deletions ugbc/src/targets/common/begin_repeat.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,9 @@ come quello di fine. Questo comando fornisce un modo conveniente per ripetere un
di istruzioni per tutto il tempo nel quale una particolare condizione è falsa. La condizione è
controllata di nuovo ad ogni ciclo, fino a quando non è più vera.
@syntax REPEAT : ... : UNTIL [expression]
@syntax REPEAT
@syntax ...
@syntax UNTIL [expression]
@syntax REPEAT
@syntax ...
@syntax UNTIL expression
@example REPEAT : score = score + 1 : UNTIL NOT alive
Expand Down
3 changes: 0 additions & 3 deletions ugbc/src/targets/common/end_repeat.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@
*
* @param _environment Current calling environment
*/
/* <usermanual>
@keyword REPEAT...UNTIL
</usermanual> */
void end_repeat( Environment * _environment, char * _expression ) {

Loop * loop = _environment->loops;
Expand Down

0 comments on commit 43cc896

Please sign in to comment.