mirror of
https://github.com/enso-org/enso.git
synced 2024-12-25 05:33:28 +03:00
Fix links to dev documentation (#5617)
Closes #5555 Update all `dev.enso.org/docs` links.
This commit is contained in:
parent
7abc281bd8
commit
6971dd0850
@ -1,7 +1,7 @@
|
||||
//! Client library for the JSON-RPC-based Project Manager service.
|
||||
//!
|
||||
//! The all methods and types are derived from Engine RPC API described
|
||||
//! here https://dev.enso.org/docs/enso/language-server/protocol-project-manager.html
|
||||
//! here https://enso.org/docs/developer/enso/language-server/protocol-project-manager.html
|
||||
|
||||
//FIXME: We need to review the structures' names in Enso Protocol specification
|
||||
// https://github.com/enso-org/enso/issues/708
|
||||
|
@ -21,7 +21,7 @@ pub mod skip_and_freeze;
|
||||
// ==================================
|
||||
|
||||
/// The keyword introducing an qualified import declaration. See:
|
||||
/// https://dev.enso.org/docs/enso/syntax/imports.html#import-syntax
|
||||
/// https://enso.org/docs/developer/enso/syntax/imports.html#import-syntax
|
||||
pub const QUALIFIED_IMPORT_KEYWORD: &str = "import";
|
||||
|
||||
/// The keyword introducing an unqualified import declaration.
|
||||
|
@ -26,7 +26,7 @@ use crate::Shape;
|
||||
// =================
|
||||
|
||||
/// Symbols that can appear in operator name, as per
|
||||
/// https://dev.enso.org/docs/enso/syntax/naming.html#operator-naming
|
||||
/// https://enso.org/docs/developer/enso/syntax/naming.html#operator-naming
|
||||
pub const SYMBOLS: [char; 25] = [
|
||||
'!', '$', '%', '&', '*', '+', '-', '/', '<', '>', '?', '^', '~', '|', ':', '\\', ',', '.', '(',
|
||||
')', '[', ']', '{', '}', '=',
|
||||
|
@ -153,7 +153,7 @@ pub struct Frp {
|
||||
/// This event should be emitted to set a new code of the preprocessor. The preprocessor is
|
||||
/// a function called on the Engine side before sending data to IDE, allowing us to do some
|
||||
/// compression or filtering for the best performance. See also _Lazy Visualization_ section
|
||||
/// [here](http://dev.enso.org/docs/ide/product/visualizations.html).
|
||||
/// [here](https://enso.org/docs/developer/ide/product/visualizations.html).
|
||||
pub preprocessor_change: frp::Any<PreprocessorConfiguration>,
|
||||
}
|
||||
|
||||
|
@ -11,7 +11,7 @@ use crate::component::visualization;
|
||||
pub struct Metadata {
|
||||
/// An Enso lambda, called on the Engine side before sending data to IDE, allowing us to do
|
||||
/// some compression or filtering for the best performance. See also _Lazy Visualization_
|
||||
/// section [here](http://dev.enso.org/docs/ide/product/visualizations.html).
|
||||
/// section [here](https://enso.org/docs/developer/ide/product/visualizations.html).
|
||||
pub preprocessor: visualization::instance::PreprocessorConfiguration,
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user