Skip to content

Commit

Permalink
Minor adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
baioc committed Sep 17, 2021
1 parent f845b7a commit b81160c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Formally#

![GitHub release (semver)](https://img.shields.io/github/v/release/baioc/FormallySharp)
![GitHub top language](https://img.shields.io/github/languages/top/baioc/FormallySharp?color=%2330b9db)
![GitHub commit activity](https://img.shields.io/github/commit-activity/w/baioc/FormallySharp)
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/baioc/FormallySharp?label=commits)

Formally# is an online formal language designer.
**Check it out at [www.formallysharp.codes](http://www.formallysharp.codes)**
Expand Down Expand Up @@ -29,7 +30,7 @@ You'll need to install the following pre-requisites in order to build, test and
* [ASP.NET Core Runtime](https://dotnet.microsoft.com/apps/aspnet)
* [Node LTS](https://nodejs.org/en/download/), including NPM

Before running the project **for the first time**, you must also restore dotnet project-local tools:
Before running the project for the first time (**and after updates**), you must also restore local dotnet tools:

```sh
$ dotnet tool restore
Expand Down
22 changes: 14 additions & 8 deletions src/Client/Index.fs
Original file line number Diff line number Diff line change
Expand Up @@ -958,14 +958,20 @@ let main model dispatch =
]
]

Html.div [
Bulma.section [
prop.style [ style.paddingTop (length.rem 0) ]
prop.children [projectInterface ]
]
Bulma.section [
prop.style [ style.paddingTop (length.rem 0) ]
prop.children [recognitionInterface ]
Bulma.columns [
columns.isMultiline
columns.isCentered
prop.children [
Bulma.column [
column.isFull
column.isHalfWidescreen
prop.children [ projectInterface ]
]
Bulma.column [
column.isFull
column.isHalfWidescreen
prop.children [ recognitionInterface ]
]
]
]

Expand Down
2 changes: 1 addition & 1 deletion src/Shared/ContextFree.fs
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,6 @@ type Dpda<'State, 'InputSymbol, 'StackSymbol
else
Ok action, next

/// Less parametric DPDA for the common case when input symbols = stack symbols.
/// Less parametric DPDA for the case when stack symbols <= input symbols.
type Dpda<'State, 'Symbol when 'State: comparison and 'Symbol: comparison> =
Dpda<'State, 'Symbol, 'Symbol>

0 comments on commit b81160c

Please sign in to comment.