Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit 7d8117b

Browse files
committed
fixed quotes
1 parent b4d09a5 commit 7d8117b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ import codeanticode.eliza.*;
1919
Eliza eliza;
2020
eliza = new Eliza(this);
2121

22-
String response = eliza.processInput(Hello);
22+
String response = eliza.processInput("Hello");
2323
println(response);
2424
```
2525

2626
You can use the readScript() function to change the script that Eliza uses to construct its answers:
2727

2828
```java
29-
eliza.readScript(script);
30-
eliza.readScript(http://chayden.net/eliza/script");
29+
eliza.readScript("script");
30+
eliza.readScript("http://chayden.net/eliza/script");
3131
```
3232

3333
To go back to the default script that is loaded when Eliza is initialized, call the readDefaultScript() function.

0 commit comments

Comments
 (0)