summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2013-12-02 19:02:05 +0100
committerAndy Wingo <wingo@pobox.com>2013-12-02 19:03:50 +0100
commite54c7dd67cd299e248c544caf330587915cc95a0 (patch)
tree747e9f4c8032877b633556353fcdac5be4dc7212
parent60ce72b9b9b230cb7dfafebdfba04ca318c8fb47 (diff)
downloadguile-e54c7dd67cd299e248c544caf330587915cc95a0.tar.gz
Fix brainfuck comment
* module/language/brainfuck/parse.scm: Fix outdated comment.
-rw-r--r--module/language/brainfuck/parse.scm5
1 files changed, 1 insertions, 4 deletions
diff --git a/module/language/brainfuck/parse.scm b/module/language/brainfuck/parse.scm
index 81dbdd94a..286d1e2ed 100644
--- a/module/language/brainfuck/parse.scm
+++ b/module/language/brainfuck/parse.scm
@@ -1,6 +1,6 @@
;;; Brainfuck for GNU Guile.
-;; Copyright (C) 2009 Free Software Foundation, Inc.
+;; Copyright (C) 2009, 2013 Free Software Foundation, Inc.
;; This library is free software; you can redistribute it and/or
;; modify it under the terms of the GNU Lesser General Public
@@ -30,9 +30,6 @@
; where <instruction> is a symbolic name representing the type of instruction
; and the optional arguments represent further data (for instance, the body of
; a [...] loop as a number of nested instructions).
-;
-; A full brainfuck program is represented by the (<brainfuck> instructions)
-; object.
; While reading a number of instructions in sequence, all of them are cons'ed