keiffster / program-y

Python 3.x based AIML 2.0 Chatbot interpreter, framework, related programs and knowledge files
https://keiffster.github.io/program-y/
Other
348 stars 138 forks source link

Error in wiki Tutorial-Getting-Started #228

Closed sld closed 5 years ago

sld commented 5 years ago

Hi! Here https://github.com/keiffster/program-y/wiki/Tutorial-Getting-Started is an error in

<?xml version="1.0" encoding="UTF-8"?>
<aiml version="2.0">
    <category>
        <pattern>HELLO</pattern>
        <template>Hi there!</template>
    <category>
</aiml>

There should be closing tag

<?xml version="1.0" encoding="UTF-8"?>
<aiml version="2.0">
    <category>
        <pattern>HELLO</pattern>
        <template>Hi there!</template>
    </category>
</aiml>
keiffster commented 5 years ago

Good spot, I’ll update the docs tonight

Regards

Keith 07771 597630

On 30 Aug 2019, at 13:09, Idris Y notifications@github.com wrote:

Hi! Here https://github.com/keiffster/program-y/wiki/Tutorial-Getting-Started is an error in

<?xml version="1.0" encoding="UTF-8"?>

HELLO

There should be closing tag

<?xml version="1.0" encoding="UTF-8"?>

HELLO

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

keiffster commented 5 years ago

Fixed