Skip to content

Commit 3579c62

Browse files
committed
Rename master branch to main
1 parent 5b3f062 commit 3579c62

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: build
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
tags:
88
- "*-[0-9]+.*"
99
pull_request:
1010
branches:
11-
- master
11+
- main
1212

1313
jobs:
1414
build:

src/main/java/org/scijava/command/CommandService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
* A <em>command</em> is a particular type of plugin that is also a
5151
* {@link Module}; i.e., it is {@link Runnable}, with typed inputs and outputs.
5252
* <p>
53-
* The command service keeps a master index of all commands known to the system.
53+
* The command service keeps a central index of all commands known to the system.
5454
* It asks the {@link PluginService} for available commands, then takes care of
5555
* registering them with the {@link ModuleService}.
5656
* </p>

src/main/java/org/scijava/module/ModuleService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/**
4848
* Interface for service that tracks and executes available modules.
4949
* <p>
50-
* The module service keeps a master index of all modules known to the system.
50+
* The module service keeps a central index of all modules known to the system.
5151
* At heart, a module is a {@link Runnable} piece of code, but with explicit
5252
* typed input and output parameters.
5353
* </p>

src/main/java/org/scijava/plugin/PluginService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
/**
4545
* Interface for service that keeps track of available plugins.
4646
* <p>
47-
* The plugin service keeps a master index of all plugins known to the system.
47+
* The plugin service keeps a central index of all plugins known to the system.
4848
* At heart, a plugin is a piece of functionality that extends a program's
4949
* capabilities. Plugins take many forms; see {@link SciJavaPlugin} for details.
5050
* </p>

0 commit comments

Comments
 (0)