From 58c5af825d92be38f8a3d2210e65f64d1816a7d3 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Fri, 31 May 2019 11:29:18 -0400 Subject: [PATCH] Add snapshot link to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a37e316..5f4f29a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Kotlin Finite State Machine [![CircleCI](https://circleci.com/gh/ToxicBakery/kfin-state-machine.svg?style=svg)](https://circleci.com/gh/ToxicBakery/kfin-state-machine) [![codecov](https://codecov.io/gh/ToxicBakery/kfin-state-machine/branch/master/graph/badge.svg)](https://codecov.io/gh/ToxicBakery/kfin-state-machine) [![Maven Central](https://img.shields.io/maven-central/v/com.ToxicBakery.kfinstatemachine/core.svg)](https://oss.sonatype.org/content/repositories/releases/com/ToxicBakery/kfinstatemachine/core/) +# Kotlin Finite State Machine [![CircleCI](https://circleci.com/gh/ToxicBakery/kfin-state-machine.svg?style=svg)](https://circleci.com/gh/ToxicBakery/kfin-state-machine) [![codecov](https://codecov.io/gh/ToxicBakery/kfin-state-machine/branch/master/graph/badge.svg)](https://codecov.io/gh/ToxicBakery/kfin-state-machine) [![Maven Central](https://img.shields.io/maven-central/v/com.ToxicBakery.kfinstatemachine/core.svg)](https://oss.sonatype.org/content/repositories/releases/com/ToxicBakery/kfinstatemachine/core/) [![Maven Central](https://img.shields.io/maven-metadata/v/https/oss.sonatype.org/content/repositories/snapshots/com/ToxicBakery/kfinstatemachine/core/maven-metadata.xml.svg)](https://oss.sonatype.org/content/repositories/snapshots/com/ToxicBakery/kfinstatemachine/) Kotlin library for creating finite state machines. > It is an abstract machine that can be in exactly one of a finite number of states at any given time. The FSM can change from one state to another in response to some external inputs; the change from one state to another is called a transition. An FSM is defined by a list of its states, its initial state, and the conditions for each transition.