Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions docs/src/DeveloperDocumentation/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ labelled. We have the following labels, along with how they are meant to be appl
### Primary Labels: Release Notes Behaviour

| Label | Meaning |
|-------|---------|
|:------|:--------|
| `release notes: added` | The release notes for this PR were manually added to the changelog, and should be ignored by the script |
| `release notes: not needed` | This PR does not warrant an entry in the release notes. Internal only changes, like reorganization of private functions, changes to the test pipeline, etc can be tagged with this |
| `release notes: use title` | The release notes for this PR should be based on the title of this PR. The script will turn \$TITLE from the PR to `[#xyz] $TITLE` |
Expand All @@ -69,7 +69,7 @@ on to the next topic, which are also grouped by types, and so on.
##### PR Topics

| Label | Changelog Category |
|-------------------------------|--------------------|
|:------------------------------|:-------------------|
| `release notes: highlight` | Highlights |
| `topic: algebraic geometry` | Changes related to Algebraic Geometry |
| `topic: combinatorics` | Changes related to Combinatorics |
Expand All @@ -92,7 +92,7 @@ on to the next topic, which are also grouped by types, and so on.
##### PR Types

| Label | Changelog Category |
|-------------------------------|--------------------|
|:------------------------------|:-------------------|
| `renaming` | Items being renamed |
| `serialization` | Changes related to serializing data in the MRDI file format |
| `enhancement` | New features or extended functionality |
Expand Down Expand Up @@ -138,7 +138,7 @@ In general the description of each change should start with a verb in present
tense. Here are some more concrete suggestions.

| Change | Example |
|-------------------------------|--------------------|
|:------------------------------|:-------------------|
| move from experimental to src/ | Graduate bla from experimental to officially supported |
| feature added | Add `bla` for `blub `/ Support `bla` for `blub` / Implement `bla`
| renaming things | Rename `bla` to `blub`
Expand Down
4 changes: 2 additions & 2 deletions docs/src/Fields/interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ We list the methods that work for any field and its elements.
## Fields

| Method | Remark |
| ------ | ------ |
|:------ |:------ |
| `is_finite(K)` | Return whether $K$ is finite |
| `order(K)` | $\lvert K \rvert$ or error if the field is infinite |
| `characteristic(K)` | $\operatorname{char}(K)$ |

## Field elements

| Method | Remark |
| ------ | ------ |
|:------ |:------ |
| `is_one(a)` | |
| `is_zero(a)` | |
| `is_invertible(a)` | |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/Fields/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ For functionality available only for specific fields, consult the corresponding
Here is a list of the fields available in OSCAR:

| Field | How to create | Remark | Reference |
| ------------ | ----------- | --------- |------|
|:------------ |:----------- |:--------- |:------|
| $\mathbb{Q}$ | `rational_field()` | Also available as `QQ` | [Rationals](@ref rationals_section) |
| $\mathbb{F}_q$ | `GF(q)` | See also `finite_field` | [Finite fields](@ref finite_fields_section) |
| $\mathbb{F}_q[X]/(f)$ | `finite_field(f)` | | [Finite fields](@ref finite_fields_section)|
Expand Down
2 changes: 1 addition & 1 deletion docs/src/Rings/integer.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ sign of ``r`` is the same as the sign of ``b``. Thus, if ``b > 0`` then
modulus ``b`` is zero. This is summarised in the following table.

remainder | division | sign | rounding
----------|------------|------------------|---------------------
:---------|:-----------|:-----------------|:--------------------
rem | div/divrem | same as dividend | towards zero
mod | | same as divisor | towards ``-\infty``

Expand Down
2 changes: 1 addition & 1 deletion src/Groups/GAPGroups.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2614,7 +2614,7 @@ about it becomes known to Oscar may yield different outputs.
The following notation is used in the returned string.

| Description | Syntax |
| ----------- | ----------- |
|:----------- |:----------- |
| trivial group | 1 |
| finite cyclic group | C<size> |
| infinite cyclic group | Z |
Expand Down
2 changes: 1 addition & 1 deletion src/Groups/group_characters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ character table of W(B3)
Currently the following series are supported.

| Series | Parameter |
| ------ | ---------------- |
|:------ |:---------------- |
| `:Cyclic` | pos. integer |
| `:Dihedral` | even pos. integer |
| `:Symmetric` | pos. integer |
Expand Down
Loading