Skip to content

Commit

Permalink
Replace master with main
Browse files Browse the repository at this point in the history
  • Loading branch information
rm-hull committed Nov 23, 2023
1 parent 8aced9b commit e52c3f2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Clojure CI

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Infix

[![Build Status](https://github.com/rm-hull/infix/actions/workflows/clojure.yml/badge.svg)](https://github.com/rm-hull/infix/actions/workflows/clojure.yml)
[![Coverage Status](https://coveralls.io/repos/rm-hull/infix/badge.svg?branch=master)](https://coveralls.io/r/rm-hull/infix?branch=master)
[![Coverage Status](https://coveralls.io/repos/rm-hull/infix/badge.svg?branch=main)](https://coveralls.io/r/rm-hull/infix?branch=main)
[![Dependencies Status](https://versions.deps.co/rm-hull/infix/status.svg)](https://versions.deps.co/rm-hull/infix)
[![Downloads](https://versions.deps.co/rm-hull/infix/downloads.svg)](https://versions.deps.co/rm-hull/infix)
[![Clojars Project](https://img.shields.io/clojars/v/rm-hull/infix.svg)](https://clojars.org/rm-hull/infix)
Expand Down Expand Up @@ -219,7 +219,7 @@ referenced in a subsequent function definition:
## EBNF Grammar Rules

The `from-string` macro parses infix expressions based on the EBNF
[grammar rules](https://github.com/rm-hull/infix/blob/master/src/infix/grammar.clj)
[grammar rules](https://github.com/rm-hull/infix/blob/main/src/infix/grammar.clj)
as follows:

- _**<expression>** ::= term { addop term }._
Expand Down
2 changes: 1 addition & 1 deletion doc/basic-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ referenced in a subsequent function definition:
## EBNF Grammar Rules

The `from-string` macro parses infix expressions based on the EBNF
[grammar rules](https://github.com/rm-hull/infix/blob/master/src/infix/grammar.clj)
[grammar rules](https://github.com/rm-hull/infix/blob/main/src/infix/grammar.clj)
as follows:

* _**<expression>** ::= term { addop term }._
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"LICENSE.md"
]
:output-path "doc/api"
:source-uri "http://github.com/rm-hull/infix/blob/master/{filepath}#L{line}"
:source-uri "http://github.com/rm-hull/infix/blob/main/{filepath}#L{line}"
:themes [:default [:google-analytics {:tracking-code "UA-39680853-6" }]]}
:min-lein-version "2.8.1"
:profiles {
Expand Down

0 comments on commit e52c3f2

Please sign in to comment.