forked from jan/mem_edit
		
	Fix docs (Process.open() -> Process(); remove trailing whitespace
This commit is contained in:
		
							parent
							
								
									96eea79bfc
								
							
						
					
					
						commit
						9f71883fbe
					
				@ -33,7 +33,7 @@ class Process(metaclass=ABCMeta):
 | 
				
			|||||||
      and use it to read and write to memory. Once you are done with the process,
 | 
					      and use it to read and write to memory. Once you are done with the process,
 | 
				
			||||||
      use .close() to free up the process for access by other debuggers etc.
 | 
					      use .close() to free up the process for access by other debuggers etc.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        p = Process.open(1239)
 | 
					        p = Process(1239)
 | 
				
			||||||
        p.close()
 | 
					        p.close()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    To read/write to memory, first create a buffer using ctypes:
 | 
					    To read/write to memory, first create a buffer using ctypes:
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user