Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Minor typo and nit fix #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Varnam is based on phonetic transliteration, and defines a particular scheme for each language. libvarnam is the core library that all Varnam projects use. It is a shared library that implements a transliterator, a reverse transliterator and a learning subsystem.

ilibvarnam is a learning program, that is, it can learn words as you type. It stores the words it has learned, and makes use of this knowledge to provide suggestions while transliterating.
libvarnam is a learning program, that is, it can learn words as you type. It stores the words it has learned, and makes use of this knowledge to provide suggestions while transliterating.

For instance, to input the text "മലയാളം", in other phonetic based transliteration systems, you will have to input "malayaaLam". But in Varnam, just inputting "malayalam" can give you the word "മലയാളം". Varnam knows about half a million Malayalam words as of now, and it gets better with more use. Varnam can ease the input time considerably for beginners, compared to other transliteration systems.

Expand All @@ -28,7 +28,7 @@ Look inside [schemes/](https://github.com/varnamproject/libvarnam/tree/master/sc

## libvarnam

This is the core of varnamproject and all components use this shared library. libvarnam has a fairly simple API and is written using standard C. It can be easily embedded to your application. If you have a standalone application, you can embed the "libvarnam.so" or "libvarnam.dll" or even a statically compiled version of the library. Web applications can use the REST API interface to enable indic input.
This is the core of varnamproject and all components use this shared library. libvarnam has a fairly simple API and is written using standard C. It can be easily embedded to your application. If you have a standalone application, you can embed the "libvarnam.so" or "libvarnam.dll" or even a statically compiled version of the library. Web applications can use the REST API interface to enable indic input.

## varnamproject.com

Expand Down